2023 Nov 2nd – UQ PUG 3

Welcome to UQ Python User Group! Check out our general information for details about who we are and what we do.

Structure

  1. We start today by adding our names to the table below
  2. Add your questions to this page
  3. This month’s presentation
  4. Finally, we spend the rest of the session answering the questions you’ve brought!

This month’s presentation

Our first guest speaker for PUG will be Nikhil Jangamreddy, please make him feel welcome!

Today, Nikhil presented about integrating ChatGPT with Python, demonstrating some applications.

Some interesting tools explored/mentioned - ChatGPT (and the API) - Deeplearning.ai - poe - streamlit - langchain - Mistral - Seminal work: Attention Is All You Need

Introduce yourself

What’s your name? Where are you from? Why are you here?
Cameron West UQ Library To learn and help
Karen Fang Business School To learn :)
Nicholas Wiggins UQ Library Learn and help!
Nikhil EECS UQ Learn
Valentina Urrutia Guada UQ Library To learn and help

Questions

If you have any Python questions you’d like to explore with the group, please put them in a markdown cell, with any code you’d like us to run in a Python cell.

Question 1 - Model installation Question -Karen

Fail to install the package

https://allenai.github.io/scispacy/

en_ner_bc5cdr_md

Solution

See code below, we can install using the download link.

# Example install
!pip install https://s3-us-west-2.amazonaws.com/ai2-s2-scispacy/releases/v0.5.3/en_ner_bc5cdr_md-0.5.3.tar.gz
## How to install modules:
!pip install #<module url> access this by copying the download link for the module

import spacy

# Load the spaCy English language model
nlp = spacy.load('<module name>')

Question 2 - Question - Name

Add more details here

## Code for Q2

Question 3 - Question - Name

Add more details here

## Code for Q3

Question 4 - Question - Name

Add more details here

## Code for Q4

Question 5 - Question - Name

Add more details here

## Code for Q5

Question 6 - Question - Name

Add more details here

## Code for Q6